home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / glass / glass.lha / GLASS / make.SUN < prev    next >
Text File  |  1991-01-31  |  1KB  |  73 lines

  1. # Installation dependent make variables for ericv on phoibos.
  2.  
  3. # full path of the ESPRIT environment
  4. ESPRITDIR = /home1/forfun
  5.  
  6. #  BDIR     : bin directory
  7. BDIR = $(ESPRITDIR)/bin
  8.  
  9. #  IDIR     : include directory
  10. IDIR = $(ESPRITDIR)/include
  11.  
  12. #  LDIR     : library directory
  13. LDIR = $(ESPRITDIR)/lib
  14.  
  15. NFULLDS = $(ESPRITDIR)/ds/nfullgl.ds
  16. NKERNDS = $(ESPRITDIR)/ds/nkerngl.ds
  17.  
  18. #  HOSTNAME : name of installation machine.
  19. HOSTNAME=phoibos
  20.  
  21. # SYS     : name of operating system or machine type
  22. #     BSD    For generic BSD systems
  23. #     AVIION    For generic DG_UX systems
  24. #     HPUX    For all HP-UX systems
  25. #     SUN    For all SUN systems
  26. #     APOLLO    For all Apollo systems
  27. SYS = SUN
  28.  
  29. # CLIBLOC : required C libraries
  30. CLIBLOC =
  31.  
  32. LINTLIBLOC =
  33.  
  34. PASLIBLOC =
  35.  
  36. # CBADADR : address that will cause a core-dump if read or written.
  37. CBADADR = 0
  38.  
  39. SYSLINTFLAGS = -hpac
  40. SYSCFLAGS =
  41. SYSCPROFFLAGS =
  42. SYSCDBUGFLAGS =
  43. SYSPFLAGS =
  44. CC=cc
  45. # Collection of host dependent make rules.
  46.  
  47. ### libinstall ###
  48. # MODULE    - module to install
  49. libinstall:
  50.     cp $(MODULE) $(LDIR)/$(MODULE)
  51.  
  52. ### includeinstall ###
  53. # MODULE    - module to install
  54. includeinstall:
  55.     cp $(MODULE) $(IDIR)/$(MODULE)
  56.  
  57. ### maninstall ###
  58. # MAN        - manual page to install
  59. maninstall:
  60.     cp $(MAN) /usr/man/manl
  61.  
  62. ### bininstall ###
  63. # MODULE    - module to install
  64. bininstall:
  65.     cp $(MODULE) $(BDIR)/$(MODULE)
  66.     strip $(BDIR)/$(MODULE)
  67.  
  68. ### arlibinstall ###
  69. # MODULE    - module to install
  70. arlibinstall:
  71.     ranlib $(MODULE)
  72.     cp $(MODULE) $(LDIR)/$(MODULE)
  73.